@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    padding: 0;
    background-color: white;
    box-sizing: border-box;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 0.001px solid #13349c;
    padding: 5px 60px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    align-items: center;
}


a, a:hover {
    text-decoration: none;
}

.logo img{
    height: 40px;
    margin-right: 10px;
}

nav {
    padding: 5px 20px;
    display: flex;
    align-items: center;
}

nav a {
    color: black;
}

nav a:hover {
    color: #007BFF;
}

.logo {
    flex: 1;
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.menu li {
    padding: 15px 30px;
    font-size: 16px;
}

.toggle {
    font-size: 30px;
    display: none;
}



.contact-button {
    background-color: #0B2E82;
    color: white !important; /* Changez la couleur du texte en blanc avec !important */
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none; /* Assurez-vous que le lien ne soit pas souligné */
    display: inline-block; /* Assurez-vous que le bouton soit affiché correctement */
    font-weight: 600; /* Pour rendre le texte un peu plus épais */
    text-align: center; /* Centrez le texte */
    transition: background-color 0.3s ease;
}


.contact-button:hover {
    background-color: #007bff;
}

/* Responsive Styles */
@media screen and (max-width: 1000px) {
    

    header {
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-bottom: 0.001px solid #13349c;
        padding: 0 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        align-items: center;
        font-family: montserrat;
    }
    nav {
        display: block;
        position: relative;
        padding: 15px 20px;
        background-color: white;
        width: 100%;  
    }

    nav a {
        color: black;
    }
    
    nav a:hover {
        color: #007BFF;
    }

    .logo img{
        width: 45%;
        height: 45%;
    }

    .menu {
        margin-top: 15px;
        display: none;
    }

    .menu.active, .toggle{
        display: block;
    }

    .toggle {
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .menu li {
        padding: 20px 20px;
        font-size: 14px;
    }
}


body {
    font-family: montserrat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 115vh;
    margin: 0;
    background-color: #f8f9fa;
}

.contact-container {
    display: flex;
    width: 80%;
    max-width: 1200px;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

.contact-info {
    width: 50%; 
    padding: 30px;
    background: #0B2E82;
    color: white;
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 60px;
}

.contact-info h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info .info {
    margin-bottom: 30px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info .info-item i {
    font-size: 20px;
    margin-right: 30px;
}



.contact-form {
    width: 50%;
    padding: 30px;
    background: #ffffff;
    overflow: hidden;
}

.contact-form h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-form p {
    font-size: 16px;
    color: #0B2E82;
    margin-bottom: 30px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
}

.contact-form button {
    padding: 10px 20px;
    background: #0B2E82;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600; 
}

.contact-form button:hover {
    background: #007bff;
}

.form .input {
    font-family: montserrat;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        width: 100%;
        height: 100%;
        margin-bottom: -75px;
        overflow: hidden;
        position: relative;
    }
    .contact-info, .contact-form {
        width: 100%;
    }

    }

